All Questions
Tagged with serializationformatting
8 questions
6votes
0answers
198views
C++ string Formatter Again Part-4
Previously asked here. The code is now available on GitHub. Since the previous review I have added unit tests. Since it is big it will come in a couple of parts. Part 1 | Part 2 | Part 3 | Part 4 ...
4votes
1answer
158views
C++ string Formatter Again Part-3
Previously asked here. The code is now available on GitHub. Since the previous review I have added unit tests. Since it is big it will come in a couple of parts. Part 1 | Part 2 | Part 3 | Part 4 ...
4votes
1answer
140views
C++ string Formatter Again Part-2
Previously asked here. The code is now available on GitHub. Since the previous review I have added unit tests. Since it is big it will come in a couple of parts. Part 1 | Part 2 | Part 3 | Part 4 Part ...
5votes
2answers
261views
C++ string Formatter Again Part-1
Previously asked here. The code is now available on GitHub. Since the previous review I have added unit tests. Since it is big it will come in a couple of parts. Part 1 | Part 2 | Part 3 | Part 4 Part ...
7votes
1answer
1kviews
Python 3.x Hexdump
I posted a small hexdump generator function from a program I've been writing not long ago and applied what a reviewer suggested since then. The goal was to lazily hexdump bytes objects (byte strings, ...
0votes
1answer
321views
Construct: (un)dumping bytes to hex
This code is part of the Construct library. Docstrings explain what the code is supposed to do. ...
4votes
3answers
620views
Format of hexeditor
Is there a cleaner way to write this code? It's the start of a hexeditor I'm creating. I'm aware that the variables aren't descriptive, this is just a test run for when I imbed it into a File ...
5votes
4answers
1kviews
Persist data by serializing/deserializing objects that are sent to it
I've created the following class to persist data by serializing/deserializing objects that are sent to it. I would like to know if there is a better way of writing this class, or if my class is fine ...